Learn R Programming

bfp (version 0.0-48)

BmaSamples Methods: Other methods for BmaSamples objects

Description

Print the object (print), get fitted values (fitted) and corresponding residuals (residuals).

Usage

# S3 method for BmaSamples
print(x, ...)
# S3 method for BmaSamples
fitted(object, ...)
# S3 method for BmaSamples
residuals(object, ...)

Arguments

x

valid BmaSamples object

object

valid BmaSamples object

...

unused

Author

Daniel Saban\'es Bov\'e

See Also

predict.BmaSamples, summary.BmaSamples

Examples

Run this code
## construct a BayesMfp object
set.seed(19)

x1 <- rnorm (n=15)
x2 <- rbinom (n=15, size=20, prob=0.5) 
x3 <- rexp (n=15)

y <- rt (n=15, df=2)

test <- BayesMfp (y ~ bfp (x2, max = 4) + uc (x1 + x3), nModels = 200, method="exhaustive")

## now draw samples from the Bayesian model average
testBma <- BmaSamples (test)

## the print method:
testBma

## the fitted method:
fitted(testBma)

## and the corresponding residuals:
residuals(testBma)

Run the code above in your browser using DataLab